home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / taropyon / hewin / ccisrc / defs.h < prev    next >
C/C++ Source or Header  |  1993-11-30  |  454b  |  25 lines

  1. /*    CCIプログラム用ヘッダファイル    *********************************/
  2. #ifndef    _DEFS_H
  3. #define    _DEFS_H
  4.  
  5. #define    size_t    unsigned int
  6. #define    NULL    (0)
  7.  
  8. #define    NORMAL    (0)
  9. #define    ERR        (-1)
  10. #define    TRUE    (1)
  11. #define    FALSE    (0)
  12. #define    ON        (1)
  13. #define    OFF        (0)
  14. #define    LOOP    for(;;)
  15.  
  16. #define    STRLEN    (256)
  17.  
  18. #define    REG        register
  19. #define    UCHAR    unsigned char
  20. #define    UINT    unsigned int
  21. #define    SHORT    short
  22. #define    USHORT    unsigned short
  23.  
  24. #endif
  25.